home *** CD-ROM | disk | FTP | other *** search
/ PC Format 3 (5.25") / PC Format - Issue 3 December 1991 - Disk 2.ima / PCF.BAT < prev    next >
DOS Batch File  |  1994-08-29  |  854b  |  59 lines

  1. echo off
  2. cls
  3.  
  4. :start
  5. nocurs
  6. disp pcfiss3 1
  7. getkey wx
  8.  
  9. if errorlevel 2 goto quit
  10. if errorlevel 1 goto winbun
  11.  
  12. :winbun
  13. disp pcfiss31 1
  14. getkey yn
  15. if errorlevel 2 goto start
  16. if errorlevel 1 goto win
  17.  
  18. :win
  19. disp pcfiss32 1
  20. getkey abcm
  21. if errorlevel 4 goto start
  22. if errorlevel 3 goto diskc
  23. if errorlevel 2 goto diskb
  24. if errorlevel 1 goto diska
  25.  
  26. :diska
  27. cd winbun
  28. cls
  29. echo Please insert a blank disk in drive A:
  30. pause
  31. copy winbun.exe a:
  32. cd..
  33. goto start 
  34.  
  35. :diskb
  36. cd winbun
  37. cls
  38. echo Please insert a blank disk in drive B:
  39. echo Also note: This will work with single floppy drive machines,
  40. echo just follow the DOS commands.
  41. pause
  42. copy winbun.exe a:
  43. cd..
  44. goto start 
  45.  
  46. :diskc
  47. cd winbun
  48. md c:\winbun
  49. copy winbun.exe c:\winacc
  50. cd..
  51. goto start 
  52.  
  53. :quit
  54. cls
  55. echo thankyou for using the PCF Cover Disk.
  56. cd..
  57. pause
  58.  
  59.